home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Files
/
Errors
/
NotADirectoryError.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
362b
|
23 lines
// NotADirectoryError.h
#ifndef NotADirectoryError_h
#define NotADirectoryError_h
#ifndef FileError_h
#include "FileError.h"
#endif
class NotADirectoryError: public FileError
{
public:
NotADirectoryError( OSErr error )
: FileError( error )
{}
// Used for afpObjectTypeErr,
// dupFNErr from findFolder
// and internal errors
};
#endif